home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19961006-19970104 / 000111_news@columbia.edu _Mon Nov 4 11:21:23 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id LAA17976 for <kermit.misc@watsun.cc.columbia.edu>; Mon, 4 Nov 1996 11:21:23 -0500 (EST)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id LAA16103 for kermit.misc@watsun; Mon, 4 Nov 1996 11:21:22 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Motorola's Montana 28.8 fax/modem card
  8. Date: 4 Nov 1996 16:20:59 GMT
  9. Organization: Columbia University
  10. Lines: 29
  11. Message-ID: <55l55b$aaf@apakabar.cc.columbia.edu>
  12. References: <DzpJJ6.8vv@freenet.buffalo.edu>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <DzpJJ6.8vv@freenet.buffalo.edu>,
  16. L. Chen <am302@freenet.buffalo.edu> wrote:
  17. : I use Columbia Kermit 3.14 as a external protocol to ProComm for DOS. 
  18. : Kermit does not have a script for the above modem; so I use the script for
  19. : the Zoom 14.4 modem -- (In the .ini file, I have "set modem zoom").  Is
  20. : that the reason why I am only get a file transfer speed of 1,200 to 2,000
  21. : bytes/sec -- out of a possible of 3,600 bytes for a 28.8 modem ????
  22. If your modem does not have the same commands as Zoom modem, you have to
  23. alter the script to make it work with your modem.  Make sure that it enables
  24. all the modem's high-speed features: an interface speed of (say) 57600 bps,
  25. error correction, data compression, and hardware flow control.
  26.  
  27. : How can I increase the transfer speed? 
  28. Once you are sure the modem script is working right, tell Kermit to:
  29.  
  30.   set receive packet length 4000 ; or some other number between 1000 and 9000
  31.   set window 20                  ; or other number between (say) 4 and 31
  32.   set control unprefix all
  33.   set control prefix 0,1,13,...  ; (prefix unsafe control characters)
  34.  
  35. and then you should get the transfer rates you expect, *IF* the connection
  36. allows it.  See the Kermit FAQ for further information:
  37.  
  38.   http://www.columbia.edu/kermit/faq.html
  39.   ftp://kermit.columbia.edu/kermit/faq.txt
  40.  
  41. - Frank